home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / tmpfile.man < prev    next >
Text File  |  1989-01-05  |  1KB  |  34 lines

  1. ' Copyright 1989 Regents of the University of California
  2. ' Permission to use, copy, modify, and distribute this
  3. ' documentation for any purpose and without fee is hereby
  4. ' granted, provided that this notice appears in all copies.
  5. ' The University of California makes no representations about
  6. ' the suitability of this material for any purpose.  It is
  7. ' provided "as is" without express or implied warranty.
  8. ' $Header: /sprite/src/lib/c/stdio/RCS/tmpfile.man,v 1.1 89/01/05 17:00:14 ouster Exp $ SPRITE (Berkeley)
  9. .so \*(]ltmac.sprite
  10. .HS tmpfile lib
  11. .BS
  12. .SH NAME
  13. tmpfile \- Create a temporary file
  14. .SH SYNOPSIS
  15. .nf
  16. \fBinclude <stdio.h>
  17.  
  18. \fBFILE *
  19. tmpfile()
  20. .BE
  21.  
  22. .SH DESCRIPTION
  23. .PP
  24. This procedure creates and opens a temporary file.  The file will
  25. be removed when it is closed or when the process exits.  The return
  26. value from \fBtmpfile\fR is a pointer to the opened stream, which
  27. may be used for performing I/O to and from the file.  If an error
  28. occurred in opening the file, \fBNULL\fR is returned.
  29. .DE
  30. .SH KEYWORDS
  31. file, open, temporary
  32.